AE 315 · Experimental Aerodynamics · Spring 2025 · ERAU
Before extracting aerodynamic forces, tare corrections were applied using the image–invert method: the model was run in its normal orientation (image) and then inverted, and the average of those readings subtracted from the test data to eliminate structural and gravitational interference loads. Data was collected at four conditions: 0° yaw at 75 fps and 100 fps, and 10° yaw at 75 fps and 100 fps.
Lift, drag, side force, pitch, roll, and yaw were read directly from the WAFBC force balance output. Each force was normalized by dynamic pressure and reference area to produce non-dimensional coefficients: C_L = Lift/(qS_w), C_D = Drag/(qS_w), C_m = Pitch/(qS_w c_w), C_l = Roll/(qS_w b_w), C_n = Yaw/(qS_w b_w). A quadratic drag polar (C_D = C_D0 + K C_L²) was fit to extract parasitic drag and induced drag factor.
Reynolds numbers based on mean wing chord were computed from the "Reynolds Number per ft" column in the raw data files and scaled to the wing geometry. A 1% systematic uncertainty was assumed for all force balance outputs per the Micaplex calibration specification.
| Re | Speed | Yaw | Best C_L/C_D | Best AoA |
|---|---|---|---|---|
| 4.61 × 10⁵ | 75 fps | 0° | 4.21 | 12° |
| 6.10 × 10⁵ | 100 fps | 0° | 3.77 | 12° |
| 4.60 × 10⁵ | 75 fps | 10° | 3.19 | 12° |
| 6.09 × 10⁵ | 100 fps | 10° | 2.67 | 12° |
Raw force balance data was loaded from CSV files for each test condition. Aerodynamic tares were applied before computing non-dimensional coefficients. Below is a representative excerpt; the full script is AE315_LAB4.m.
% Apply aerodynamic tares: image-invert method
lift0_75 = yaw0_75data.("WAFBC Lift") ...
- image0_75data.("WAFBC Lift")(2:2:end) ...
+ invert0_75data.("WAFBC Lift")(2:2:end);
% Non-dimensional coefficients
q = mean(yaw0_75data.("Dynamic Pressure")); % psf
sw = 242.01; % in² reference area
CL = lift0_75 ./ (q * sw);
CD = drag0_75 ./ (q * sw);
% Drag polar curve fit: CD = CD0 + K*CL^2
[p, ~] = polyfit(CL, CD, 2);
CD0 = p(3); % parasitic drag
K = p(1); % induced drag factor
% Reynolds number from tunnel data
RE0_75 = mean(yaw0_75data.("Reynolds Number per ft"));